add_filter( 'elementor/frontend/print_google_fonts', function( $status ) {
 
    return false;
 
} );
 
add_action( 'wp_print_styles', function() {
 
    ?>
    <link rel="preconnect" href="https://fonts.googleapis.com"> 
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> 
    <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto&display=swap">
    <?php
 
} );