/*
 * FONT SET: inter-contractbook  (SPEC §3.3)
 * 출신: _inbox/contractbook/tokens.css (--font-abcwhyte 정의)
 *
 * 키트 의도: ABC Whyte (유료) — 라이브에선 Inter 로 substitute.
 * 한글 본문 필요 시 Pretendard 를 폴백으로 끼움 (한국어 사이트 호환).
 *
 * 로딩: @import url(...) 금지 (CWV LCP 차단). preconnect + stylesheet_links 는
 *      registry/fontsets/inter-contractbook.json 이 책임. 이 파일은 변수 선언만.
 */

:root {
  /* ABC Whyte → Inter substitute, 한글은 Pretendard 폴백 */
  --f-display: 'Inter', 'Pretendard', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --f-body:    'Inter', 'Pretendard', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --f-mono:    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --f-serif:   Georgia, 'Times New Roman', serif;

  /* 키트는 400/700 만 명시. medium/semibold 는 표준 weight 로 보강. */
  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;
}
