/* ===========================================================================
   FONTS
   The system voice is single-family: Forma DJR Micro (HP's bespoke geometric
   grotesque). It is PROPRIETARY (Commercial Type / Mark Caneso) and cannot be
   bundled. Per the spec's own guidance, the closest open substitute is Manrope
   at 400/500/600/700 — closer in proportion, gentler curves, NO metric
   adjustment needed. We load it from Google Fonts and alias it below.

   >>> SUBSTITUTION FLAG: replace with real Forma DJR Micro .woff2 files when
       licensed — drop them in tokens/ and swap the @font-face src here. <<<
   =========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');

:root {
  /* Single family across every surface: display, body, button, caption */
  --font-sans: 'Manrope', 'Forma DJR Micro', Arial, system-ui, sans-serif;

  --weight-regular: 400;   /* body                       */
  --weight-medium: 500;    /* ALL display headlines      */
  --weight-semibold: 600;  /* button labels              */
  --weight-bold: 700;      /* caption-bold, tight buttons*/
}
