/* -------------------------
   Custom Font Override
   ------------------------- */

/* Import Google Font (opsional, kalau mau font modern)
   Kalau tetap pakai sistem font seperti Verdana, bagian ini bisa dihapus */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* Override global font */
html, body {
    /*font-family: "Verdana", Arial, sans-serif !important;*/
    font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
	/* Kalau mau Google Fonts: 
       font-family: "Roboto", "Verdana", Arial, sans-serif !important;
    */
   
}

/* Heading */
h1, h2, h3, h4, h5, h6 {
    font-family: inherit !important;
    
}

/* Komponen Bootstrap umum */
.navbar, .btn, .form-control, .card, .table {
    font-family: inherit !important;
}

/* Supaya textarea & input konsisten */
input, select, textarea, button {
    font-family: inherit !important;
}
