/* public/fonts/fonts.css — Pretendard Variable 자체호스팅 @font-face.
 * SSOT: docs/03-tech-architecture.md §5.2 (Pretendard Variable, font-display: swap).
 * public/ 아래 파일은 Vite가 빌드 시 dist/client로 그대로 복사하고 dev 서버에서도 그대로
 * 서빙하므로, 별도 빌드 스텝 없이 dev/build 양쪽에서 "/fonts/fonts.css"로 도달 가능하다.
 *
 * 폰트 실물: public/fonts/PretendardVariable.woff2 (Pretendard v1.3.9).
 * 원본 URL·SHA-256·소비 역할: public/fonts/font-manifest.json
 * 저작권 고지·OFL 1.1 전문: public/fonts/OFL-Pretendard.txt
 * font-weight 범위는 Pretendard 공식 배포 문서의 variable axis 범위(45~920)를 따른다.
 */
@font-face {
  font-family: "Pretendard Variable";
  font-weight: 45 920;
  font-style: normal;
  font-display: swap;
  src: url("/fonts/PretendardVariable.woff2") format("woff2");
}
