/**
 * Common font styles
 * 全画面共通フォント設定
 * 日本語: Noto Sans CJK JP
 * 英語: Montserrat
 * Figma A案トンマナ準拠
 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Noto+Sans+JP:wght@400;500;600;700&display=swap');

:root {
    --bs-body-font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
    --bs-font-sans-serif: 'Montserrat', 'Noto Sans JP', sans-serif;
    --font-size-h1: 26px;
    --font-size-h2: 22px;
    --font-size-h3: 20px;
    --font-size-body: 16px;
    --font-size-caption: 12px;
}

body {
    font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
    font-size: 16px;
    color: #181D27;
}

h1 {
    font-size: 26px;
    font-weight: 700;
}

h2 {
    font-size: 22px;
    font-weight: 600;
}

h3 {
    font-size: 20px;
    font-weight: 600;
}

h4 {
    font-size: 18px;
    font-weight: 600;
}

small, .text-caption {
    font-size: 12px;
}
