/* Self-hosted Heebo + Roboto (variable fonts).
 *
 * These used to be pulled from Google via WebFont.load() in every layout. That
 * broke intermittently: the fonts.googleapis.com stylesheet is served with
 * `Cache-Control: private, max-age=86400, stale-while-revalidate=604800`, and
 * the fonts.gstatic.com URLs baked into it are hash-pinned. Google rotates
 * those binaries and deletes the old paths, so for up to 8 days a browser can
 * keep serving cached CSS that points at files Google no longer has - every
 * font request 404s and the whole UI falls back to the browser's default serif
 * until the user hard-refreshes. Heebo hit exactly that in Aug 2026.
 *
 * Self-hosting removes the failure mode rather than shortening the window: we
 * own the file, and getCustomPath() stamps the URL with filemtime() so any
 * change we make invalidates every cache immediately.
 *
 * Keep this linked from its own folder - never concatenate it into a
 * public/minify bundle. The src: url()s below are relative to THIS file, so a
 * bundle at a different directory depth silently breaks every font. Same rule
 * the Font Awesome stylesheet follows in dashboard_refactored.blade.php.
 *
 * Both families are variable, so one file per subset covers every weight the
 * app asks for (300-700). latin-ext is required, not optional: the rupee sign
 * U+20B9 used by .inr-symbol lives in its U+20AD-20C0 range.
 */

/* Heebo - latin-ext */
@font-face {
  font-family: 'Heebo';
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url(heebo/heebo-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Heebo - latin */
@font-face {
  font-family: 'Heebo';
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url(heebo/heebo-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Roboto - latin-ext (carries the rupee sign, U+20B9) */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(roboto/roboto-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Roboto - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(roboto/roboto-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
