Poppins + Crimson Pro
Grumpy wizards make toxic brew
A standfirst set in Crimson Pro, one size up — where a pairing starts earning trust.
The five boxing wizards jump quickly over the lazy dog, mixing jugs of quiet vodka while the jury watches. Click anywhere in this preview and type your own text to try the pairing.
“Type is a beautiful group of letters, not a group of beautiful letters.”
— Matthew Carter
Fig. 1 — Poppins over Crimson Pro, in the wild.
Poppins 600 / Crimson Pro 400 — click any section and type your own copy.
Why it works
Poppins's near-perfect circles give headings a clean geometric confidence, and Crimson Pro's old-style warmth gives paragraphs the bookish comfort that geometric sans faces cannot provide at text sizes. The contrast is classical — rational display over humanist text — and Crimson Pro's large weight range means captions and emphasis can stay within one family. A good fit for content sites that want to feel current but still read like print.
More about each face: Poppins · Crimson Pro
Use this pairing
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@600&family=Crimson+Pro:wght@400;600&display=swap" rel="stylesheet">h1, h2, h3 {
font-family: 'Poppins', 'Century Gothic', 'Segoe UI', Arial, sans-serif;
font-weight: 600;
}
body {
font-family: 'Crimson Pro', Georgia, 'Times New Roman', serif;
font-weight: 400;
}import { Poppins, Crimson_Pro } from "next/font/google";
const heading = Poppins({
subsets: ["latin"],
weight: "600",
variable: "--font-heading",
});
const body = Crimson_Pro({
subsets: ["latin"],
weight: "400",
variable: "--font-body",
});