/* ===============================================
   Fonts 2025 — System stack (no external requests)
   =============================================== */

:root{
  /* Typography system */
  --font-ui: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  --font-heading: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --font-primary: var(--font-ui);
  --font-title: var(--font-heading);
}

/* Apply globally — headings switch to Geist */
html, body { font-family: var(--font-primary); }
h1, h2, h3, h4, .h1, .h2, .h3, .h4, [data-typescale="display"] {
  font-family: var(--font-title);
  letter-spacing: -0.01em;
}
/* Tighten UI labels and buttons */
button, .btn, .chip, .tag { font-family: var(--font-ui); font-weight: 600; }
