/*
Pretendard — Copyright (c) 2021 Kil Hyung-jin, licensed under SIL Open Font License 1.1.
https://github.com/orioncactus/pretendard

이슈 #485: 바깥(jsdelivr) 글꼴 참조는 무결성 검사값(SRI)이 없어 위험 신호였다.
검사값을 안전하게 구할 방법이 없어 화면이 실제로 쓰는 굵기(400/500/600/700)만
같은 출처(same-origin)로 내려받아 프로젝트 안에 둔다 — 같은 출처 자원은 SRI 대상이 아니다.
*/

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

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

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

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