Fira 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 — Fira Sans over Merriweather, in the wild.
Fira Sans 700 / Merriweather 400 — click any section and type your own copy.
Why it works
Fira Sans carries FF Meta's humanist DNA — open apertures, lively rhythm — which makes its headlines feel articulate rather than blunt, a good match for Merriweather's dense, bookish paragraphs. Both faces were engineered for hostile rendering conditions (Firefox OS phones and low-resolution screens respectively), so the pairing holds its quality at small sizes where flashier combinations fall apart. A strong choice for serious long-form writing with a contemporary edge.
More about each face: Fira Sans · Merriweather
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=Fira+Sans:wght@700&family=Merriweather:wght@400;700&display=swap" rel="stylesheet">h1, h2, h3 {
font-family: 'Fira Sans', Helvetica, Arial, sans-serif;
font-weight: 700;
}
body {
font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
font-weight: 400;
}import { Fira_Sans, Merriweather } from "next/font/google";
const heading = Fira_Sans({
subsets: ["latin"],
weight: "700",
variable: "--font-heading",
});
const body = Merriweather({
subsets: ["latin"],
weight: "400",
variable: "--font-body",
});