Oswald + Literata
Grumpy wizards make toxic brew
A standfirst set in Literata, 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 — Oswald over Literata, in the wild.
Oswald 700 / Literata 400 — click any section and type your own copy.
Why it works
Oswald's tall, condensed grotesque stacks headlines with poster-like impact, and Literata answers with a sturdy, bookish serif that keeps the body warm and unhurried. The narrow, assertive display sans over a broad, comfortable serif is a proven editorial split: it maximizes headline presence in tight space while giving the reading its own generous room.
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=Oswald:wght@700&family=Literata:wght@400;600&display=swap" rel="stylesheet">h1, h2, h3 {
font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
font-weight: 700;
}
body {
font-family: 'Literata', Georgia, 'Times New Roman', serif;
font-weight: 400;
}import { Oswald, Literata } from "next/font/google";
const heading = Oswald({
subsets: ["latin"],
weight: "700",
variable: "--font-heading",
});
const body = Literata({
subsets: ["latin"],
weight: "400",
variable: "--font-body",
});