/*
 * Social Stardom shared typography kit.
 *
 * This mirrors the live socialstardom.nl type system: Geist for interface and
 * editorial text, Caveat for the deliberate handwritten accent, and the
 * platform monospace stack for code-style metadata.
 */

body {
  font-family: var(--font-body) !important;
  font-weight: 500;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body :where(
  h1, h2, h3, h4, h5, h6,
  p, a, button, input, select, textarea, label,
  li, small, strong, em, blockquote, figcaption,
  legend, dt, dd, th, td, div, span, i
) {
  font-family: var(--font-body) !important;
}

/* Replace legacy page-level inline font declarations as well. */
body :where([style*="font-family"]) {
  font-family: var(--font-body) !important;
}

/* The reference site's only intentional alternate families. */
body :where(.font-accent, .font-body-alt) {
  font-family: var(--font-accent) !important;
}

body :where(.font-mono, code, pre, kbd, samp) {
  font-family: var(--font-mono) !important;
}

/* Keep icon glyphs on their own font declarations. */
body :where(svg, path, use) {
  font-family: inherit;
}
