Oswald + Merriweather

Grumpy wizards make toxic brew

A standfirst set in Merriweather, 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 Merriweather, in the wild.

Oswald 600 / Merriweather 400 — click any section and type your own copy.

Why it works

A newsroom combination: Oswald's condensed gothic headlines compress maximum impact into tight space, exactly like classic newspaper decks, while Merriweather's sturdy screen-first serif carries the article below with authority. Strong vertical headlines against a wide, even body texture makes layouts feel organized even when dense.

More about each face: Oswald · Merriweather

Use this pairing

HTML — Google Fonts embed
<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@600&family=Merriweather:wght@400;700&display=swap" rel="stylesheet">
CSS
h1, h2, h3 {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-weight: 600;
}

body {
  font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
  font-weight: 400;
}
Next.js — next/font
import { Oswald, Merriweather } from "next/font/google";

const heading = Oswald({
  subsets: ["latin"],
  weight: "600",
  variable: "--font-heading",
});

const body = Merriweather({
  subsets: ["latin"],
  weight: "400",
  variable: "--font-body",
});

Related pairings