/* Define the regular font */
@font-face {
    font-display: swap;
    font-family: 'Kanit';
    src: url('../fonts/Kanit/Kanit-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Define the bold font */
@font-face {
    font-display: swap;
    font-family: 'Kanit';
    src: url('../fonts/Kanit/Kanit-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* Define the bold italic font */
@font-face {
    font-display: swap;
    font-family: 'Kanit';
    src: url('../fonts/Kanit/Kanit-bolditalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

/* Define the italic font */
@font-face {
    font-display: swap;
    font-family: 'Kanit';
    src: url('../fonts/Kanit/Kanit-italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

/* Define the Medium font */
@font-face {
    font-display: swap;
    font-family: 'Kanit';
    src: url('../fonts/Kanit/Kanit-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}



/* Apply the font to a CSS class */
.label-kanit{
    font-family: 'Kanit', sans-serif;
    font-weight: normal; /* or bold */
    font-style: normal; /* or italic */
}

.kanit{
    font-family: 'Kanit', sans-serif;
}

.table-kanit{
    font-family: 'Kanit', sans-serif;
    font-weight: normal; /* or bold */
    font-style: normal; /* or italic */
    font-size: 30px;
}

.markdown>table thead th, .table thead th {
    font-family: 'Kanit', sans-serif;
    color: var(--tblr-gray-500);
    background: var(--tblr-bg-surface-tertiary);
    font-size: .8125rem;
    font-weight: var(--tblr-font-weight-normal);
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1rem;
    color: var(--tblr-secondary);
    padding-top: .5rem;
    padding-bottom: .5rem;
    white-space: nowrap;
}

body, html, .kanit {
    font-family: 'Kanit', sans-serif !important;
}

