// Roboto Workhorse - Roboto carries display AND body on weight contrast; JetBrains Mono for code. import { JetBrains_Mono, Roboto } from "next/font/google"; export const roboto = Roboto({ subsets: ["latin"], weight: ["400", "500", "700"], variable: "--font-roboto" }); export const mono = JetBrains_Mono({ subsets: ["latin"], weight: ["400", "500"], variable: "--font-mono" }); // display = Roboto 700, body = Roboto 400/500 - the pair lives in the weights, not two families.