/*
Copyright (c) 2021 Kil Hyung-jin, with Reserved Font Name Pretendard.
https://github.com/orioncactus/pretendard

This Font Software is licensed under the SIL Open Font License, Version 1.1.
http://scripts.sil.org/OFL
*/

/* 참고 원본: win-fx-agg-web/FXOneClient/Template/pretendard.css (9종 웨이트 전체).
   여기서는 사이트가 실제로 쓰는 3종(400·600·700)만 담는다 — 웨이트당 약 750KB 라 전부 받으면 낭비다.
   - 경로는 절대경로(/fonts/...) — /en 과 /en/guide 처럼 깊이가 다른 페이지에서 함께 쓰이므로 상대경로는 깨진다.
   - woff2 만 제공(원본의 woff 폴백은 원본 저장소에도 파일이 없고, 지원하지 않는 브라우저는 시스템 폰트로 폴백).
   - font-display: swap — 폰트를 받는 동안 폴백 폰트로 먼저 보여줘 텍스트가 비어 보이지 않게 한다.
   웨이트를 추가하려면 원본에서 해당 woff2 를 복사하고 아래 블록을 같은 형식으로 늘리면 된다. */

@font-face {
	font-family: 'Pretendard';
	font-weight: 700;
	font-display: swap;
	src: local('Pretendard Bold'), url(/fonts/Pretendard-Bold.woff2) format('woff2');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 600;
	font-display: swap;
	src: local('Pretendard SemiBold'), url(/fonts/Pretendard-SemiBold.woff2) format('woff2');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 400;
	font-display: swap;
	src: local('Pretendard Regular'), url(/fonts/Pretendard-Regular.woff2) format('woff2');
}
