Is it possible to add the the typekit embed code to wordpress by using wp_enqueue_script()?
Here is what I have so far but I'm not seeing any results:
    function typekit_enqueue_script() {
    wp_enqueue_script(
    'typekit',
    '//use.typekit.net/weq7wou.js',
    array(),
    null,
    true
    );
    }
    add_action( 'wp_enqueue_script', 'typekit_enqueue_script' );
 
                        
Are you loading Typekit afterwards?
Or just add the load script in one of your js: