Caveat + Lora

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.

Caveat 600 / Lora 400 — click the text to edit

Why it works

Caveat reads like margin notes — narrow, quick, slightly irregular — and at semibold it holds up as a heading rather than decoration. Lora grounds it: a contemporary serif with brushed, calligraphic roots, so its curves share a pen-drawn ancestry with the script above while its even color and sturdy serifs make long text effortless. The pairing suits personal blogs, recipe sites and wedding pages that want handwritten intimacy without asking readers to decode a script paragraph.

More about each face: Caveat · Lora

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=Caveat:wght@600&family=Lora:wght@400;600&display=swap" rel="stylesheet">
CSS
h1, h2, h3 {
  font-family: 'Caveat', 'Segoe Script', 'Comic Sans MS', cursive;
  font-weight: 600;
}

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

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

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

Related pairings