/* Wanted Design System — Web Fonts
   ─────────────────────────────────────────────────────────────────────
   Primary UI font : Pretendard JP  (Korean + Latin, weights 400–700)
   Brand / Display : Wanted Sans / Wanted Sans Variable
   Monospace       : SF Mono

   These are proprietary fonts. Upload the .woff2 files via the sidebar
   Font Manager and @font-face rules will be registered automatically.

   Until then, the fallback stacks below render the UI with system fonts.
   DO NOT substitute a different family in the --font-* variables.
   ─────────────────────────────────────────────────────────────────────

   How to get the fonts:
   • Pretendard JP  → https://github.com/orioncactus/pretendard (free, OFL)
   • Wanted Sans    → Wanted official brand kit (proprietary)
   • SF Mono        → ships with macOS/Xcode (system font)
*/

:root {
  /* Keep these pointing at the exact family names used in the Figma file.
     The browser falls back to the stack when the font isn't installed. */
  --font-pretendard:   "Pretendard JP", -apple-system, BlinkMacSystemFont,
                       "Segoe UI", sans-serif;

  --font-wanted-sans:  "Wanted Sans", "Wanted Sans Variable",
                       -apple-system, BlinkMacSystemFont, sans-serif;

  --font-mono:         "SF Mono", ui-monospace, Menlo, monospace;
}
