/* 웹폰트 — 외부 CDN 대신 서버에서 직접 제공 (개선요청 2026-09-06 #7)
   원본: Google Fonts (SIL Open Font License 1.1)
   · Noto Sans KR  — 가변폰트(굵기 100~900). 한글 음절 전체 포함(사용자 입력 대응)
   · Nanum Gothic  — 로그인 화면 제목 한 줄 전용이라 그 글자만 담음 */

@font-face {
  font-family: 'Noto Sans KR';
  font-style: normal;
  font-weight: 100 900;              /* 가변폰트 — 300·400·500·700 모두 이 파일로 */
  font-display: swap;
  src: url('/static/fonts/noto-sans-kr.woff2') format('woff2-variations');
}

@font-face {
  font-family: 'Nanum Gothic';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/static/fonts/nanum-gothic-800.woff2') format('woff2');
}
