/*
 * FONT SET: inter-gallery  (SPEC §3.3)
 * 출신: _inbox/gallery-white/tokens.css (--font-display / --font-body 모두 Inter)
 *
 * 키트 의도: Inter 가 display + body 둘 다 담당 — 한 가족, 두 역할.
 * weights: 300 / 400 / 500 / 600 / 700  (키트가 명시한 5단).
 *
 * 로딩: 키트 원본의 `@import url('https://fonts.googleapis.com/css2?...')` 는
 *      CSS 안 @import = CWV LCP 차단 → 금지 (§3.1).  대신 preconnect +
 *      stylesheet_links 로 분리 (registry/fontsets/inter-gallery.json 참조).
 *      이 .css 는 변수 선언만 한다.
 *
 * ko_layered: false — gallery-white 키트는 영문 전용 (한글 본문 없음).
 *                     한국어 사이트에 적용할 땐 다른 fontset (예: pretendard-pure) 사용.
 */

:root {
  --f-display: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --f-body:    'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --f-mono:    ui-monospace, 'SF Mono', Menlo, Monaco, Consolas, monospace;
  --f-serif:   Georgia, 'Times New Roman', serif;

  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;
}
