/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 16 2026 | 17:56:37 */
/* УБИРАЕМ Google Fonts (кроме Roboto из Custom Fonts) */
@import url('data:text/css;base64,') /* Блокирует все @import Google Fonts */;
/* Заменяем только Ubuntu и Montserrat на системные */
@font-face { 
    font-family: 'Ubuntu'; 
    src: local('system-ui'), local('Segoe UI'), local('Roboto'); 
    font-display: swap; 
}
@font-face { 
    font-family: 'Montserrat'; 
    src: local('system-ui'), local('Segoe UI'), local('Roboto'); 
    font-display: swap; 
}

/* Roboto остается из Custom Fonts - НЕ ТРОГАЕМ */