/** * Fonts via next/font/google (self-hosted at build). If the build machine has no network, swap this import in * layout.tsx for `./fonts.system` (same exported names, system stack) — the build must never fail on fonts. */ import { Inter, JetBrains_Mono } from 'next/font/google'; export const fontUi = Inter({ variable: '--font-ui', subsets: ['latin'], display: 'swap' }); export const fontMono = JetBrains_Mono({ variable: '--font-mono', subsets: ['latin'], display: 'swap', weight: ['400', '500', '600'] });