// Foundry Industrial - Barlow Condensed (display) + Barlow (body) + JetBrains Mono (code). // Next.js recipe (next/font/google); expose each as a CSS variable and map your tokens to them. import { Barlow, Barlow_Condensed, JetBrains_Mono } from "next/font/google"; export const display = Barlow_Condensed({ subsets: ["latin"], weight: ["600", "700"], variable: "--font-display" }); export const body = Barlow({ subsets: ["latin"], weight: ["400", "500", "600"], variable: "--font-body" }); export const mono = JetBrains_Mono({ subsets: ["latin"], weight: ["400", "500"], variable: "--font-mono" }); // // CSS: --f-display: var(--font-display), "Arial Narrow", sans-serif; etc.