FontPair

Playfair Display & Inter

An elegant, high-contrast serif paired with an extremely readable, neutral modern sans.

editorial
premium
elegant
brand
blog
portfolio
magazine

The digital experience of the future.

Typography is the craft of endowing human language with a durable visual form. Good typography communicates its message clearly, while great typography captures the emotion of the content.

Heading Font
Playfair Display
Body Font
Inter

Quick Integration

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@400;500&display=swap');

/* CSS Variables */
:root {
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

/* Base Styles */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
}

body {
  font-family: var(--font-body);
}