fix: Replace Instrument Serif with Playfair Display for display headings

Instrument Serif is inherently condensed and illegible at heading sizes.
Playfair Display is wider, has proper variable weight support (400-900),
and reads well at all sizes.
This commit is contained in:
Lukas May
2026-03-04 10:23:26 +01:00
parent 1cfe51b10e
commit 1db5e2dc56
14 changed files with 18 additions and 18 deletions

View File

@@ -122,7 +122,7 @@ export function InboxList({
{/* Header */}
<div className="flex items-center justify-between">
<div className="flex items-center gap-2">
<h2 className="text-2xl font-display">Agent Inbox</h2>
<h2 className="text-lg font-semibold font-display">Agent Inbox</h2>
<Badge variant="secondary">{joined.length}</Badge>
</div>
<Button variant="outline" size="sm" onClick={onRefresh}>

View File

@@ -60,7 +60,7 @@ export function PhaseAccordion({
)}
{/* Phase name */}
<span className="min-w-0 flex-1 truncate font-display">
<span className="min-w-0 flex-1 truncate font-display font-medium">
{phase.name}
</span>