/* Lưu các font family và đường dẫn */
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100;200;300;400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap'); */

/* Nếu dùng  font của google thì import như này */

@font-face {
    font-family: 'Roboto';
    src: url("../../font/Roboto/Roboto-Light.ttf");
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url("../../font/Roboto/Roboto-Regular.ttf");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url("../../font/Roboto/Roboto-Medium.ttf");
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url("../../font/Roboto/Roboto-Bold.ttf");
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow';
    src: url("../../font/Barlow/Barlow-ExtraBold.ttf");
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow';
    src: url("../../font/Barlow/Barlow-Black.ttf");
    font-weight: 900;
    font-display: swap;
}