Add custom fonts with visual controls.

Start Fresh or Load Preset
When you activate Font Family, you start with a clean slate – no default fonts.
Quick Start: Load Preset
Click “Load Preset” → Choose from 2 options:
Preset 1: System Fonts
sans,serif,mono– System font stacks
Preset 2: Google Fonts
sans(Inter),serif(Merriweather),mono(JetBrains Mono)
Add Font Family
Each font requires name and value:
- Click “Add Font Family”
- Name:
body(becomesfont-bodyclass) - Value: Font stack (e.g.,
'Inter', sans-serif) - Save
Font Value Examples
System fonts:
ui-sans-serif, system-ui, sans-serif
Google Fonts:
'Inter', sans-serif
Custom fonts:
'YourFont', -apple-system, sans-serif
Import from Page Builders
- Click “Builder Integrations”
- Select builder (Bricks/Oxygen/Gutenberg/FSE)
- Click “Fetch Font Families” → “Import”
Result: All builder fonts available as Tailwind classes.
Extend vs Replace Defaults
Extend (Default): Your fonts + Tailwind defaults
Replace: Only your custom fonts
Toggle: Settings tab → “Extend Font Family” → OFF
Why replace?
- ✅ Cleaner autocomplete
- ✅ Enforce design system
Usage
<p class="font-body">Body text</p>
<h1 class="font-heading">Heading text</h1>
`Code`