Font Stacks

Bricolage Grotesque

Primary heading font. Bold, technical, slightly condensed. Used for h1-h6, section titles, and hero text.

font-family: 'Bricolage Grotesque', sans-serif;
weights: 400, 600, 700, 800

JetBrains Mono

Monospace body font. Technical, precise, terminal-like. Used for body text, specs, code, navigation.

font-family: 'JetBrains Mono', monospace;
weights: 400, 500, 600

Type Scale

ElementFontSizeWeightLine HeightUsage
h1Bricolageclamp(2.2rem, 5vw, 3.5rem)7001.15Page titles
h2Bricolageclamp(1.6rem, 3.5vw, 2.4rem)7001.15Section titles
h3Bricolageclamp(1.1rem, 2vw, 1.5rem)7001.15Card titles, subsections
bodyJetBrains Mono0.9rem4001.6Body text
smallJetBrains Mono0.7rem5001.5Metadata, nav, specs
codeJetBrains Mono0.75rem4001.6Inline code

Chromatic Aberration

All headings have a subtle RGB fringe effect (CRT phosphor bleed):

h1, h2, h3, h4, h5, h6 {
  text-shadow:
    0.5px 0 0 rgba(255, 0, 0, 0.06),
    -0.5px 0 0 rgba(0, 100, 255, 0.05);
}

Dark mode increases opacity slightly: red 0.08, blue 0.07.

Section Labels

Section markers use a simple dot + number pattern in accent orange:

● 01   ● 02   ● 03

.section-code {
  font-family: var(--font-mono);
  font-size: 0.65rem; font-weight: 500;
  color: var(--accent-orange);
  letter-spacing: 0.04em;
}