/*
 *  Global font wiring for the Jaspr portal (Slice 0A scope: auth pages).
 *
 *  - PassionSansPDak loaded LOCALLY from /fonts/PassionSansPDak-Bold.ttf
 *    (carried verbatim from legacy /Users/gateri/Documents/Projects/
 *    jiinue-com.nosync/public/fonts/). LOGO-ONLY per
 *    legacy design-tokens.css — never apply to body/UI text.
 *
 *  - Inter Tight loaded from Google Fonts via <link rel="stylesheet"> in
 *    seo.dart baseHead(). The CSS variable below is for explicit reference;
 *    auth-shell.css already falls back to "Inter Tight" if the var is unset.
 *
 *  - CSS variables --font-interTight + --font-passion-bold + --font-logo
 *    set globally so auth-shell.css's var() references resolve. Legacy
 *    used next/font CSS class injection; this is the Jaspr equivalent.
 */

@font-face {
  font-family: 'PassionSansPDak';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/PassionSansPDak-Bold.ttf') format('truetype');
}

:root {
  --font-interTight: 'Inter Tight', system-ui, sans-serif;
  --font-passion-bold: 'PassionSansPDak';
  --font-logo: var(--font-passion-bold), 'Inter Tight', sans-serif;
}
