/* site-wide CSS for (fallback) fonts */

/** Noto Sans is Copyright 2022 The Noto Project Authors (https://github.com/notofonts/latin-greek-cyrillic)
    This Font Software is licensed under the SIL Open Font License, Version 1.1 (https://openfontlicense.org/open-font-license-official-text/) */
@font-face {
    font-family: "NotoSans_fallback";
    src:url("NotoSans-Regular-unhinted.woff2") format("woff2"),
        url("NotoSans-Regular-unhinted.woff") format("woff"),
        url("NotoSans-Regular-unhinted.otf") format("opentype"),
        url("NotoSans-Regular-unhinted.ttf") format("truetype"),
        url("NotoSans-Regular-unhinted.eot") format("embedded-opentype"),
        url("NotoSans-Regular-unhinted.svg") format("svg");
    font-display: fallback;
}

/*  intended as a fallback font for non-ASCII characters (particularly Japanese, Korean, Chinese, etc.)
    for some clients (mostly legacy) which don't have any fonts installed to display them. */

/** Noto Sans CJK is Copyright 2022 The Noto Project Authors (https://github.com/notofonts/noto-cjk)
    This Font Software is licensed under the SIL Open Font License, Version 1.1 (https://openfontlicense.org/open-font-license-official-text/) */
@font-face {
    font-family: "NotoSansJP"; /* Japanese */
    src:url("NotoSansJP-Regular.otf") format("opentype"),
        url("NotoSansJP-Regular.ttf") format("truetype");
    font-display: auto;
}
@font-face {
    font-family: "NotoSansKR"; /* Korean */
    src:url("NotoSansKR-Regular.otf") format("opentype"),
        url("NotoSansKR-Regular.ttf") format("truetype");
    font-display: auto;
}
@font-face {
    font-family: "NotoSansSC"; /* Simplified Chinese */
    src:url("NotoSansSC-Regular.otf") format("opentype"),
        url("NotoSansSC-Regular.ttf") format("truetype");
    font-display: auto;
}
@font-face {
    font-family: "NotoSansTC"; /* Traditional Chinese */
    src:url("NotoSansTC-Regular.otf") format("opentype"),
        url("NotoSansTC-Regular.ttf") format("truetype");
    font-display: auto;
}

/* test */
@font-face {
    font-family: "Comic_Sans_MS";
    src:url("Comic_Sans_MS.ttf") format("truetype");
    font-display: swap;
}

body {
    word-wrap: break-word;
    font-family: sans-serif, "NotoSansKR", "NotoSansSC", "NotoSans_fallback"; /*  "NotoSansTC", "NotoSansJP", */
    font-size: 12pt;
}
