/* ===========================================================
   풍기산업 3정5행 — 공용 폰트 (외부 CDN 없이 자체 호스팅)
   · 웹(화면) 기본: Pretendard (가변 폰트)
   · 인쇄물: 무조건 현대하모니(HDharmony)  ← 회사 보고서 지정 폰트
   ※ Pretendard를 쓰려면 아래 파일이 있어야 합니다:
      /static/fonts/PretendardVariable.woff2
      (없으면 자동으로 '맑은 고딕'으로 대체되며 오류는 없음)
   =========================================================== */

/* ----- 웹 기본: Pretendard (자체 호스팅, 가변) ----- */
@font-face{
  font-family:'Pretendard';
  font-style:normal; font-weight:100 900; font-display:swap;
  src:url('/static/fonts/PretendardVariable.woff2') format('woff2');
}
@font-face{
  font-family:'Pretendard Variable';
  font-style:normal; font-weight:100 900; font-display:swap;
  src:url('/static/fonts/PretendardVariable.woff2') format('woff2');
}

/* ----- 현대하모니(HDharmony) — 인쇄 지정 폰트 ----- */
@font-face{font-family:'HDharmony';src:url('/static/fonts/hdharmony-l.ttf') format('truetype');font-weight:300;font-display:swap}
@font-face{font-family:'HDharmony';src:url('/static/fonts/hdharmony-m.ttf') format('truetype');font-weight:400;font-display:swap}
@font-face{font-family:'HDharmony';src:url('/static/fonts/hdharmony-b.ttf') format('truetype');font-weight:700;font-display:swap}

/* ----- 인쇄물은 무조건 현대하모니 ----- */
@media print{
  html, body, *{ font-family:'HDharmony','Malgun Gothic','맑은 고딕',sans-serif !important; }
}
