/* =====================================================================
   MindOS 字体加载
   - Aventa：每个字重一个独立 family（命名与 index.html / login.html 现有
     CSS 中的 'Aventa-<Weight>' 一致），按真实字重声明 font-weight。
   - Aventa Variable：可变字体，声明完整字重轴（100–900），供 font-weight 取用。
   - 未来莹黑 Extended（'Glow Sans SC'）：Book(400) / Bold(700) 两个字重，
     由 CSS font-weight 切换；400→扫码开始/点击可进入/正文，700→粗体回退。
   - font-synthesis:none：每个 family 都已提供真实字重，禁止浏览器合成假粗体。
   路径含空格/中文，已做 URL 编码（未来莹黑 = %E6%9C%AA%E6%9D%A5%E8%8E%B9%E9%BB%91）。
   ===================================================================== */

/* Aventa 静态字重 */
@font-face {
    font-family: 'Aventa-Thin';
    src: url('font/AVENTA/Aventa%20Thin.ttf') format('truetype');
    font-weight: 100; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Aventa-ExtraLight';
    src: url('font/AVENTA/Aventa%20Extra%20Light.ttf') format('truetype');
    font-weight: 200; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Aventa-Light';
    src: url('font/AVENTA/Aventa%20Light.ttf') format('truetype');
    font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Aventa-Regular';
    src: url('font/AVENTA/Aventa%20Regular.ttf') format('truetype');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Aventa-Medium';
    src: url('font/AVENTA/Aventa%20Medium.ttf') format('truetype');
    font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Aventa-Bold';
    src: url('font/AVENTA/Aventa%20Bold.ttf') format('truetype');
    font-weight: 700; font-style: normal; font-display: swap;
}

/* Aventa Variable —— 可变字体，完整字重轴 */
@font-face {
    font-family: 'Aventa-Variable';
    src: url('font/AVENTA/Aventa%20Variable.ttf') format('truetype-variations');
    font-weight: 100 900; font-style: normal; font-display: swap;
}

/* 未来莹黑 Extended —— Book / Bold */
@font-face {
    font-family: 'Glow Sans SC';
    src: url('font/%E6%9C%AA%E6%9D%A5%E8%8E%B9%E9%BB%91/GlowSansSC-Extended-Book.otf') format('opentype');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Glow Sans SC';
    src: url('font/%E6%9C%AA%E6%9D%A5%E8%8E%B9%E9%BB%91/GlowSansSC-Extended-Bold.otf') format('opentype');
    font-weight: 700; font-style: normal; font-display: swap;
}

/* 禁止假粗体/假斜体合成：所有 family 均已提供真实字重 */
html { font-synthesis: none; }
