/* BRX Digital Design System — Fonts
 * PORTABLE. Font utility classes only. Consumers (base.html) are expected
 * to link the Google Fonts stylesheet directly in <head> for parallel loading;
 * see the <link> in templates/base.html for the canonical combined URL.
 *
 * Per §4: Poppins = headings, Montserrat = body, JetBrains Mono = numbers,
 * Instrument Serif italic = occasional editorial accent (never body).
 */

/* Utility classes — reference tokens from tokens.css */
.brx-mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.brx-serif-italic {
  font-family: var(--font-edit);
  font-style: italic;
}

/* Caption style from §4 type scale */
.brx-caption {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
