HomeTypography
Preview
css
DISPLAY
Playfair
BODY
DM Sans — clean & readable
Code
css
/* Google Fonts import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.03em;
}

p, span, button {
  font-family: var(--font-body);
  font-weight: 300;
}
Related Blocks
css
Display Hierarchy
Complete style definitions for H1–H6, paragraphs, and captions.
css
Letter Spacing System
Letter-spacing tokens - tight, normal, wide, wider.
css
Mono Code Block
Monospace style optimized for code display.