/* ==========================================================================
   font-inter.css — Inter-only typography lock
   --------------------------------------------------------------------------
   Load this file LAST in <head>, after theme.css and every page-specific
   stylesheet. It is the single source of truth for typeface:

   1. Loads Inter (300-900) from Google Fonts.
   2. Repoints every font token (--font, --font-body, --font-display, and the
      --qs-* aliases) to Inter.
   3. Forces Inter on every element, pseudo-element and form control with
      !important, so no legacy Helvetica / Poppins / Manrope / Anton /
      Baskerville / monospace declaration anywhere can win the cascade.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --font:            'Inter', sans-serif;
  --font-body:       'Inter', sans-serif;
  --font-display:    'Inter', sans-serif;
  --font-mono:       'Inter', sans-serif;
  --qs-font-body:    'Inter', sans-serif;
  --qs-font-display: 'Inter', sans-serif;
}

html,
body,
*,
*::before,
*::after,
*::placeholder,
::placeholder,
::selection,
::marker,
button,
input,
select,
optgroup,
option,
textarea,
label,
legend,
fieldset,
h1, h2, h3, h4, h5, h6,
code, pre, kbd, samp, tt, var {
  font-family: 'Inter', sans-serif !important;
  font-synthesis-weight: auto;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01';
  font-variant-numeric: tabular-nums lining-nums;
}

/* Numeric displays (queue numbers, counters, timers) keep tabular alignment
   without falling back to a monospace family. */
code, pre, kbd, samp, tt,
[class*='mono'], [class*='ticket-number'], [class*='queue-number'] {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}
