Public Sans + 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 — Public Sans over Merriweather, in the wild.

Public Sans 700 / Merriweather 400 — click any section and type your own copy.

Why it works

This is essentially the United States Web Design System's typographic recipe: Public Sans was engineered for government-grade clarity in headings and interfaces, and Merriweather's sturdy, large x-height serifs were built for long reading on screens. Neither face has decorative ambitions, which is the appeal — the pairing signals trustworthiness and plain dealing, making it a strong default for civic projects, policy blogs and serious documentation.

More about each face: Public Sans · 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=Public+Sans:wght@700&family=Merriweather:wght@400;700&display=swap" rel="stylesheet">
CSS
h1, h2, h3 {
  font-family: 'Public Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
}

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

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

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

Related pairings