/* ============================================================
   全站字体层：设计稿用字（Figma 设计稿正文/标题使用 Arimo，
   顶部导航大标题原为 Google Sans Flex，按用户要求统一先用
   已入库的 Arimo 字重替换，后续补充字体文件只需在本文件登记）。
   字重映射：Regular 400 / Medium 500 / SemiBold 600 / Bold 700
   （设计稿 Black 900 映射到 Bold 700，浏览器自动取最近字重）。
   用法：本文件必须在所有自定义 CSS 之前引入；
   组件统一使用 var(--wuling-font-family)，不再各自写字体栈。
   ============================================================ */

@font-face {
  font-family: "Arimo";
  src: url("../fonts/Arimo-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Arimo";
  src: url("../fonts/Arimo-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Arimo";
  src: url("../fonts/Arimo-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Arimo";
  src: url("../fonts/Arimo-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* 全站统一字体栈：Arimo（设计稿用字）+ 系统中文字体兜底 */
  --wuling-font-family: "Arimo", "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
}

body {
  font-family: var(--wuling-font-family);
}
