@font-face {
    font-family: 'Inter';
    src: url('Inter-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('Inter-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('Inter-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* Preload font to ensure it's available for canvas */
body::before {
    content: '';
    font-family: 'Inter';
    font-weight: 400;
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

body::after {
    content: '';
    font-family: 'Inter';
    font-weight: 700;
    position: absolute;
    opacity: 0;
    pointer-events: none;
}