Archivo + PT Serif
Grumpy wizards make toxic brew
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.
Archivo 700 / PT Serif 400 — click the text to edit
Why it works
Both of these faces were designed for news environments — Archivo as a grotesque for print and digital publications, PT Serif as a transitional workhorse for public communication — so together they read like a well-art-directed newspaper. Archivo's squared, high-x-height headlines set a punchy, factual tone, and PT Serif's sturdy triangular serifs carry long columns without fatigue. Strong hierarchy, zero frivolity: ideal for editorial and analysis-heavy blogs.
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=Archivo:wght@700&family=PT+Serif:wght@400;700&display=swap" rel="stylesheet">CSS
h1, h2, h3 {
font-family: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-weight: 700;
}
body {
font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
font-weight: 400;
}Next.js — next/font
import { Archivo, PT_Serif } from "next/font/google";
const heading = Archivo({
subsets: ["latin"],
weight: "700",
variable: "--font-heading",
});
const body = PT_Serif({
subsets: ["latin"],
weight: "400",
variable: "--font-body",
});