/* ============================================================
   와이즈과학학원 웹폰트 로딩 (2026-08-15 추가)
   ⚠️ tokens.css의 --wise-font-head는 폰트 "이름"만 지정한다.
   Paperlogy는 시스템 폰트가 아니라서, 아래 로드 코드 없이 이름만 쓰면
   브라우저가 에러 없이 Pretendard로 폴백한다 (겉보기에 멀쩡해서 놓치기 쉬움).
   → 새 앱을 만들 때 이 파일을 통째로 복사(또는 <head>에 인라인)할 것.
   ============================================================ */

/* Pretendard (본문·UI) — 링크 태그 버전:
<link rel="stylesheet" as="style" crossorigin
  href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css">
*/
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

/* Paperlogy (헤드라인) — 사용 웨이트 600·700만 로드 */
@font-face {
  font-family: "Paperlogy";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-7Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Paperlogy";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-6SemiBold.woff2") format("woff2");
}
