/* Pretendard JP를 외부 CDN(jsdelivr) 대신 이 저장소 안 파일로 직접 서빙합니다.
   일부 모바일 환경(데이터 절약 모드, 광고/추적 차단 DNS, 특정 CDN을 막는
   네트워크 필터 등)에서 외부 CDN 폰트 요청이 와이파이/데이터 여부와 상관없이
   막히는 경우가 있었는데, 같은 사이트 안(1st-party)에서 직접 받아오면 그런
   차단을 피할 수 있습니다. 실제로 이 사이트에서 쓰는 4개 굵기만 받아뒀습니다
   (400/500/600/700 — 필요한 굵기가 늘어나면 fonts/ 폴더에 파일을 추가하고
   아래에 @font-face를 하나 더 적으면 됩니다).
   출처: https://github.com/orioncactus/pretendard (MIT 라이선스), pretendard-jp 패키지. */

@font-face {
  font-family: "Pretendard JP";
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/PretendardJP-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Pretendard JP";
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/PretendardJP-Medium.woff2") format("woff2");
}

@font-face {
  font-family: "Pretendard JP";
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/PretendardJP-SemiBold.woff2") format("woff2");
}

@font-face {
  font-family: "Pretendard JP";
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/PretendardJP-Bold.woff2") format("woff2");
}
