Chewy + Nunito
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.
Chewy 400 / Nunito 400 — click the text to edit
Why it works
Chewy is full cartoon: chunky hand-lettered strokes, tilted bowls, a baseline that refuses to sit still. That much wobble needs a body face that is soft in spirit but disciplined in construction, and Nunito's rounded terminals on an otherwise conventional sans skeleton deliver exactly that. The roundness carries the candy-shop mood down into the paragraph while x-height and spacing stay orderly. Best for kids' brands, games and snack ecommerce — and keep Chewy to short headlines only.
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=Chewy:wght@400&family=Nunito:wght@400;600&display=swap" rel="stylesheet">h1, h2, h3 {
font-family: 'Chewy', 'Chalkboard SE', 'Comic Sans MS', cursive;
font-weight: 400;
}
body {
font-family: 'Nunito', Verdana, 'Segoe UI', Arial, sans-serif;
font-weight: 400;
}import { Chewy, Nunito } from "next/font/google";
const heading = Chewy({
subsets: ["latin"],
weight: "400",
variable: "--font-heading",
});
const body = Nunito({
subsets: ["latin"],
weight: "400",
variable: "--font-body",
});