/*
 * 사이트 전역 폰트(Gmarket Sans) @font-face 선언
 * 관리자 설정(setting.font) 값에 따라 head.ejs에서 body에 font-family를 적용한다.
 * 폰트 파일 경로: /fonts/GmarketSansLight.otf, GmarketSansMedium.otf, GmarketSansBold.otf
 */
@font-face {
  font-family: 'GmarketSansLight';
  src: url('/fonts/GmarketSansLight.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GmarketSansMedium';
  src: url('/fonts/GmarketSansMedium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GmarketSansBold';
  src: url('/fonts/GmarketSansBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
