Font Pairer

10 curated Google Font pairings. Live preview with your own text. Copy CSS variables and import URLs instantly.

Loading fonts…

Modern & CleanTech / SaaS

Create Anything

Subheading in Space Grotesk

The quick brown fox jumps over the lazy dog. Create anything. Free forever.

Body (Inter) pairs with heading (Space Grotesk)

Heading

Space Grotesk

Weights: 700

View on Google Fonts →

Body

Inter

Weights: 400, 600

View on Google Fonts →
CSS
/* Modern & Clean */
--font-heading: 'Space Grotesk', sans-serif;
--font-body: 'Inter', sans-serif;

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}

body, p, li, td {
  font-family: var(--font-body);
  font-weight: 400;
}