/*
 * Font Override — substitui Cerebri Sans por Inter
 * Inter carregada via Google Fonts
 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

@font-face {
    font-family: "Cerebri Sans,sans-serif";
    src: local("Inter Light"), local("Inter");
    font-weight: 300;
}
@font-face {
    font-family: "Cerebri Sans,sans-serif";
    src: local("Inter Regular"), local("Inter");
    font-weight: 400;
}
@font-face {
    font-family: "Cerebri Sans,sans-serif";
    src: local("Inter Medium"), local("Inter");
    font-weight: 500;
}
@font-face {
    font-family: "Cerebri Sans,sans-serif";
    src: local("Inter SemiBold"), local("Inter");
    font-weight: 600;
}
@font-face {
    font-family: "Cerebri Sans,sans-serif";
    src: local("Inter Bold"), local("Inter");
    font-weight: 700;
}

/* Aplicar Inter em todo o projecto */
body, * {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif !important;
}
