Geometric Signal
A tight geometric display against a relaxed grotesque body: confident product headlines with an easy reading rhythm underneath.
Quick brown foxes jump the fence at 60fps
The body face carries the reading line: long paragraphs, labels, interface copy. It stays out of the display face's way and keeps its own rhythm at small sizes.
const pair = { display, body, mono }; // 0O 1lI
Montserrat · Barlow · JetBrains Mono
// Geometric Signal - Montserrat (display) + Barlow (body) + JetBrains Mono (code).
import { Barlow, JetBrains_Mono, Montserrat } from "next/font/google";
export const display = Montserrat({ subsets: ["latin"], weight: ["700", "800"], 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" });