/*
 * fonts.css — Noto Sans Web Fonts (Google Fonts)
 *
 * Korean: Noto Sans KR (400, 500, 600, 700)
 * English: Noto Sans (400, 500, 600, 700)
 */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700&family=Noto+Sans+KR:wght@400;500;600;700&display=swap');

:root {
   --font-ko: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
   --font-en: 'Noto Sans', 'Helvetica Neue', sans-serif;
}

/* Default: Korean */
body {
   font-family: var(--font-ko);
}

/* English mode */
html[lang="en"] body {
   font-family: var(--font-en);
}

/* Monospace for codes/numbers */
.mono, code, .tree-code, .card-price {
   font-family: 'Noto Sans Mono', 'SF Mono', monospace;
}
