add_filter( 'redux/mipro/field/typography/custom_fonts', 'add_weirdbones_to_redux_fonts' );

function add_weirdbones_to_redux_fonts( $custom_fonts ) {
    $custom_fonts['WeirdBones'] = array(
        'variants' => array( 'regular', '700' ), // Customize if needed
        'subsets'  => array( 'latin' ),
    );
    return $custom_fonts;
}

add_action( 'wp_enqueue_scripts', 'enqueue_weirdbones_font' );

function enqueue_weirdbones_font() {
    wp_register_style(
        'weirdbones-font',
        get_stylesheet_directory_uri() . '/fonts/weirdbones/weirdbones.css', // Update path if needed
        false,
        null
    );
    wp_enqueue_style( 'weirdbones-font' );
}
/**
* Theme Name: Mipro Child
* Description: This is a child theme of Mipro, generated by Merlin WP.
* Author: <a href="http://themeforest.net/user/alurastudio">the AluraStudio team</a>
* Template: mipro
* Version: 1.3.1
*/