/* Wanted design system — webfonts
   Both are the file's actual real typefaces (not substitutes), self-hosted
   on their official open-source CDNs under SIL OFL license:
   - Pretendard JP — https://github.com/orioncactus/pretendard
   - Wanted Sans   — https://github.com/wanteddev/wanted-sans (Wanted's own in-house typeface)
   System fonts used sparingly in the source (SF Mono, SF Pro Text) are left as
   native OS fallbacks below — they are Apple system faces, not redistributable webfonts. */

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

:root {
  --font-sans: "Pretendard JP", "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Wanted Sans", "Pretendard JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "SF Mono", ui-monospace, Menlo, Consolas, monospace;
}
