/* ════════════════════════════════════════════════════════════════
   고운바탕 (Gowun Batang) — 시험지/검수 본문 전용 self-host 웹폰트
   ────────────────────────────────────────────────────────────────
   ⚠️ 이 파일은 **공용 단일 소스**다. 두 벌 만들지 말 것.
      소비처(둘 다 <link>로 이 파일 하나를 참조):
        ① public/t-studio/index.html        → .ap-icontent (조립 시험지 본문·인쇄)
        ② tools-problems/index.html         → .epv-wrap    (검수 미리보기)
      (빌드 산출물 public/tools-problems/index.html 에도 같은 <link>가 나가야 한다)

   ⚠️ CDN 링크 금지 — 인쇄는 네트워크가 끊겨도 되어야 하고, 서드파티 의존을
      새로 만들지 않는 것이 이 저장소 방침이다. woff2 파일은 저장소에 동봉.

   ⚠️ 인쇄 경로: print_paper.js 가 document.head 의
      <link rel="stylesheet">·<style> 를 그대로 iframe 에 복제한다.
      → 이 파일이 **head 의 link 로** 걸려 있어야 인쇄물에도 폰트가 실린다.
        (src 는 루트 절대경로라 iframe(about:blank) base URL 과 무관하게 해석된다)

   ⚠️ local() 을 일부러 쓰지 않는다 — PC 에 깔린 다른 버전이 잡히면
      기기별로 자간·줄바꿈이 달라져 self-host 의 목적이 무너진다.

   출처: https://github.com/google/fonts/tree/main/ofl/gowunbatang (v2.000)
   라이선스: SIL Open Font License 1.1 → ./gowun-batang/OFL.txt
   빌드: pyftsubset <ttf> --unicodes="*" --layout-features='*' --name-IDs='*'
                          --name-legacy --notdef-outline --glyph-names
                          --flavor=woff2     (서브셋 없음 = 원본 12,494 자 전량)
   ════════════════════════════════════════════════════════════════ */

@font-face {
    font-family: 'Gowun Batang';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/gowun-batang/GowunBatang-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Gowun Batang';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/gowun-batang/GowunBatang-Bold.woff2') format('woff2');
}
