Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions apps/web/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,31 @@
src: url("/fonts/Fraunces-Variable.woff2") format("woff2");
}

/* Logotype face used ONLY by the appbar brand mark (Tournamental
* FWC2026 in the top-left). Fraunces was reading as too editorial
* next to the gold ball icon; Archivo Black is a heavy geometric
* sans deliberately designed as a Helvetica-Bold-adjacent face,
* which gives the wordmark the squarish Pantone-card weight Tim
* was after. Two woff2 subsets (latin + latin-ext) total ~33KB
* and only fetch when the `.vt-logotype` rule is matched, so the
* body font stack is unaffected. Tim 2026-06-05. */
@font-face {
font-family: "Archivo Black";
font-style: normal;
font-weight: 400;
font-display: swap;
src: url("/fonts/ArchivoBlack-Latin.woff2") format("woff2");
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
font-family: "Archivo Black";
font-style: normal;
font-weight: 400;
font-display: swap;
src: url("/fonts/ArchivoBlack-LatinExt.woff2") format("woff2");
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

* {
box-sizing: border-box;
}
Expand Down
32 changes: 23 additions & 9 deletions apps/web/components/shell/shell.css
Original file line number Diff line number Diff line change
Expand Up @@ -262,13 +262,23 @@
.vt-appbar-wordmark {
color: var(--vt-fg-strong, #ffffff);
white-space: nowrap;
/* On the narrowest phones the title text occupies the centre cell;
* hide the wordmark there so the brand mark + title pair stays
* within the 56px row. */
/* Tim 2026-06-05: swap the editorial Fraunces face out of the
* appbar wordmark only. Archivo Black is a heavy geometric sans
* designed as a Helvetica-Bold-adjacent face, which sits as a
* logotype next to the gold ball mark in the Pantone tradition.
* Uppercase + tighter tracking + reduced size so the wordmark
* keeps its 56px row budget without overflowing. The body
* editorial Fraunces is untouched; only this rule is overridden. */
font-family: "Archivo Black", "Helvetica Neue", Arial, sans-serif !important;
font-weight: 400 !important;
font-variation-settings: normal !important;
text-transform: uppercase;
letter-spacing: 0.02em;
font-size: 0.95rem;
}
.vt-appbar-wordmark-sub {
/* "FWC2026" subtitle next to the brand wordmark. Reads as a
* mono caption in muted gold so the editorial Fraunces wordmark
* mono caption in muted gold so the Archivo Black wordmark
* stays the primary mark. */
font-family: ui-monospace, Menlo, Monaco, monospace;
font-size: 0.62em;
Expand Down Expand Up @@ -1146,11 +1156,15 @@
}

.vt-drawer-brand-name {
font-family: var(--vt-font-editorial, "Fraunces", ui-serif, Georgia, serif);
font-weight: 500;
font-variation-settings: "opsz" 96, "SOFT" 25;
font-size: 1.15rem;
letter-spacing: -0.012em;
/* Matches the appbar wordmark face so the drawer logo reads as
* the same brand mark, not as a second editorial heading. Tim
* 2026-06-05. */
font-family: "Archivo Black", "Helvetica Neue", Arial, sans-serif;
font-weight: 400;
font-variation-settings: normal;
text-transform: uppercase;
letter-spacing: 0.02em;
font-size: 0.95rem;
line-height: 1;
}

Expand Down
Binary file added apps/web/public/fonts/ArchivoBlack-Latin.woff2
Binary file not shown.
Binary file not shown.
Loading