/* ==========================================================================
[A 模組資訊]
檔案名稱：aurorabustextstyle.css
用途：aurorabus專案全站統一字體樣式
作用範圍：aurorabus專案全站（.aurorabuspage 內的所有元素）
概略流程：
1) 定義品牌字體 VogueAvantGarde 的 @font-face
2) 設定全站基底字體為 VogueAvantGarde，並提供多層備援字體（Noto Sans TC、PingFang TC、Microsoft JhengHei 等）
3) 調整行距與字距，並啟用字體平滑功能以提升整體閱讀體驗
========================================================================== */

/* ===== 品牌字體字體載入===== */
@font-face {
  font-family: "VogueAvantGarde";
  src: url("輔助檔案/字體檔案/vogue-avant-garde-medium.otf") format("opentype");
  font-style: normal;
  font-display: swap;
}

/* ===== 全站基底字體 ===== */
body,
button,
input,
select,
textarea,
a {
  font-family:
    "VogueAvantGarde",
    "Noto Sans TC",
    "Noto Sans CJK TC",
    "PingFang TC",
    "Microsoft JhengHei",
    system-ui,
    sans-serif;

  line-height: 1.6;
  letter-spacing: 0.3px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}