/*
Theme Name: Sample Theme
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Description: A clean and minimal starter WordPress theme.
Version: 8.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sampletheme
*/





/* 全站字體設定 */
body {
    /* 英文優先使用 Avenir，中文使用 Noto Sans TC */
    font-family: 'Arial', 'Noto Sans TC', sans-serif;
    /* 由於 Avenir 主要提供 Light (300)，這裡將預設字重設為 300 以確保正確顯示 */
    font-weight: 500;
    line-height: 1.6;
}

/* 標題與粗體設定 */
h1, h2, h3, h4, h5, h6, b, strong {
    /* 使用 Avenir Heavy 作為粗體 */
    font-family: 'Arial', 'Noto Sans TC', sans-serif;
    font-weight: 700;
}
