/*
 * Self-hosted Bengali face for the views that do not go through Vite/app.css —
 * receipts, invoices and PDF templates.
 *
 * fonts.cdnfonts.com/css/kalpurush returns HTTP 500, so the CDN copy these views
 * used to link never loaded and Bengali silently fell back to another family.
 * size-adjust matches Kalpurush's small x-height to the Latin face; browsers
 * without support for the descriptor just render at the normal size.
 */
@font-face {
    font-family: 'Kalpurush';
    src: url('/fonts/kalpurush.ttf') format('truetype');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
    size-adjust: 115%;
}
