Cormorant Garamond + Montserrat

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.

Cormorant Garamond 600 / Montserrat 400 — click the text to edit

Why it works

Cormorant Garamond is a display serif with razor-thin serifs and a tiny x-height, gorgeous at 48px and fragile at 16px — so it takes the headlines and hands body text to Montserrat, whose even geometric strokes render reliably at any size. The pairing balances romance with restraint: Garamond-derived curves supply the elegance, and the neutral sans keeps the layout from feeling like a perfume ad. A staple for wedding sites and refined portfolios.

More about each face: Cormorant Garamond · Montserrat

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=Cormorant+Garamond:wght@600&family=Montserrat:wght@400;600&display=swap" rel="stylesheet">
CSS
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Garamond, 'Times New Roman', serif;
  font-weight: 600;
}

body {
  font-family: 'Montserrat', 'Trebuchet MS', Helvetica, sans-serif;
  font-weight: 400;
}
Next.js — next/font
import { Cormorant_Garamond, Montserrat } from "next/font/google";

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

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

Related pairings