/*
 | Poppins -- Nortical temasinin govde yazi tipi.
 |
 | Tema 18 yuz (9 agirlik x dik/italik) ile geliyordu; burada YALNIZCA
 | temanin gercekten cizdigi bes dik agirlik duruyor. main.css'te kullanilan
 | font-weight degerleri: 300, 400/normal, 500, 600, 700/bold. Italik
 | kullanimi sifirdir (main.css'te tek bir `font-style: italic` yoktur).
 |
 | Atlanan yuzler ve nedeni:
 |   - Tum italikler (9 yuz)     -> hicbir kural italik istemiyor; <em>/<i>
 |                                  icin tarayici egik surumu kendisi uretir.
 |   - Thin 100 / ExtraLight 200 -> main.css'teki tek `font-weight: lighter`
 |                                  ve Bootstrap'in .font-weight-lighter
 |                                  sinifi, mevcut en yakin hafif yuze
 |                                  (Light 300) duser.
 |   - ExtraBold 800 / Black 900 -> hicbir kural bu agirliklari istemiyor.
 |
 | Bir ekran gercekten italik ya da 800/900 isterse: kaynak temadaki
 | .woff2 + .woff dosyalarini bu klasore kopyalayip asagiya ilgili
 | @font-face blogunu eklemek yeterlidir. Kaynak:
 |   .../Nortical Theme/tema/assets/font/
 |
 | .woff, woff2'yi desteklemeyen eski tarayiciler icin yedektir; woff2
 | destekleniyorsa tarayici .woff dosyasini HIC istemez.
 */

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-Light.woff2') format('woff2'),
        url('Poppins-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-Regular.woff2') format('woff2'),
        url('Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-Medium.woff2') format('woff2'),
        url('Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-SemiBold.woff2') format('woff2'),
        url('Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-Bold.woff2') format('woff2'),
        url('Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
