/* ============================================================
   Wanted Design System — Fonts
   ------------------------------------------------------------
   Brand fonts are loaded from their official open-source CDNs.
   Both are free for commercial use (SIL OFL).

   • Wanted Sans  — primary brand typeface (Latin + Hangul),
                    designed by Kil Hyung-jin / Kang Hanbin @ Wanted Lab.
                    Variable, weights 300–800.
   • Pretendard   — secondary / fallback system sans the design
                    system pairs with Wanted Sans (Pretendard JP in Figma).

   NOTE: These are loaded over CDN rather than vendored as local
   files because binary font files could not be fetched in this
   environment. For fully-offline use, download the woff2 files
   from the repos below and replace the @import lines with local
   @font-face rules.
     - https://github.com/wanteddev/wanted-sans
     - https://github.com/orioncactus/pretendard
   ============================================================ */

@import url('https://cdn.jsdelivr.net/gh/wanteddev/wanted-sans@v1.0.1/packages/wanted-sans/fonts/webfonts/variable/split/WantedSansVariable.min.css');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css');

:root {
  /* Primary brand stack — Wanted Sans, then Pretendard, then system */
  --wds-font-sans: "Wanted Sans Variable", "Wanted Sans", "Pretendard Variable",
    Pretendard, -apple-system, BlinkMacSystemFont, system-ui, "Apple SD Gothic Neo",
    "Malgun Gothic", "Segoe UI", Roboto, sans-serif;

  /* Numeric / tabular contexts can reuse the same stack with font-feature-settings */
  --wds-font-mono: "SFMono-Regular", ui-monospace, "JetBrains Mono", Menlo,
    Consolas, "Liberation Mono", monospace;
}
