/* Pretendard(가변 woff2, 자체호스팅) = 기본 UI 폰트 → Windows·macOS·iOS·Linux 모두 동일 렌더(OS 폰트 차이 제거).
   font-display:swap 이라 2MB 다운로드(1회·immutable 캐시) 중에도 텍스트는 즉시 표시(시스템 폰트 폴백)→로드되면 교체.
   문서 양식(견적/발주/명세 등)은 별도로 malgun.ttf 임베드해 맑은 고딕 유지(회사 Excel 양식 일치) — UI 만 Pretendard. */
@font-face {
  font-family: 'Pretendard';
  font-weight: 45 920;
  font-style: normal;
  font-display: swap;
  src: url('/worksuite/assets/fonts/PretendardVariable.woff2') format('woff2');
}
@font-face {
  font-family: 'Malgun Gothic';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: local('Malgun Gothic'), local('맑은 고딕'), local('MalgunGothic');
}
@font-face {
  font-family: 'Malgun Gothic';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: local('Malgun Gothic Bold'), local('맑은 고딕 Bold'), local('Malgun Gothic'), local('맑은 고딕');
}
