Typography
Responsive typography scale using CSS variables. All text sizes scale fluidly across breakpoints for optimal readability.
Heading Tokens
Use .heading-h1 through .heading-h6 for headings. All include responsive sizing and proper line heights.
.heading-h148px → 64px → 88px
Line height: 1.1
.heading-h232px → 40px → 48px
Line height: 1.2
.heading-h322px → 22px → 26px
Line height: 1.3
.heading-h418px → 18px → 20px
Line height: 1.3
.heading-h514px → 16px → 17px
Line height: 1.4
.heading-h612px → 14px → 15px
Line height: 1.4
Body Text Tokens
Use .body-lg through .body-xs for body text. Optimized line heights for readability.
.body-lg18px → 19px → 20px
Line height: 1.6
.body-md16px → 17px
Line height: 1.6
.body-sm14px → 15px
Line height: 1.5
.body-xs12px → 13px
Line height: 1.5
Font Family
Geist
Geist is used for all text across the site. It's a modern, geometric sans-serif with excellent readability.
Regular (400) — Body text and descriptions
Medium (500) — Headings and emphasis
Usage Guidelines
Do use utility classes
<h1 className="heading-h1">Title</h1><p className="body-lg text-text-tertiary">...</p>Don't use arbitrary values
text-[36px] sm:text-[46px] lg:text-[56px]text-[18px] leading-[1.6]Breakpoints
Typography scales across three breakpoints:
Mobile
Default
Tablet
640px (sm)
Desktop
1024px (lg)