/* Noto Sans TC - 只載入常用字重（400/500/600/700），減少字型下載量 */
/* 優先使用 WOFF2（比 TTF 小 ~59%），舊瀏覽器 fallback 至 TTF */
@font-face {
  font-family: 'Noto Sans TC';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./NotoSansTC-Regular.woff2') format('woff2'),
       url('./NotoSansTC-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Noto Sans TC';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('./NotoSansTC-Medium.woff2') format('woff2'),
       url('./NotoSansTC-Medium.ttf') format('truetype');
}

@font-face {
  font-family: 'Noto Sans TC';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('./NotoSansTC-SemiBold.woff2') format('woff2'),
       url('./NotoSansTC-SemiBold.ttf') format('truetype');
}

@font-face {
  font-family: 'Noto Sans TC';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('./NotoSansTC-Bold.woff2') format('woff2'),
       url('./NotoSansTC-Bold.ttf') format('truetype');
}
