/* ============================================================
   paperlogy.css — Paperlogy 웹폰트 자체 호스팅(@font-face)
   ------------------------------------------------------------
   HTML <head> 에서 <link href="./assets/fonts/paperlogy.css"> 로 로드.
   url() 은 이 파일 기준 상대경로(같은 폴더 woff2) — dev·delivery 동일 경로.
   프로젝트 사용 굵기만 포함: 400·500·600·700·800.
   (CSS @import 는 병합 시 위치가 어긋나 무효화되므로 <link> + @font-face 로 로드한다.)
   ============================================================ */
@font-face {
  font-family: 'Paperlogy';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('Paperlogy-4Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Paperlogy';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('Paperlogy-5Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Paperlogy';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('Paperlogy-6SemiBold.woff2') format('woff2');
}
@font-face {
  font-family: 'Paperlogy';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('Paperlogy-7Bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Paperlogy';
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url('Paperlogy-8ExtraBold.woff2') format('woff2');
}
