How to disable specific plugin in mobile version?

In wordpress exists wp_is_mobile() function.This may help you.

You must see how is named cufon handle in plugin

if(wp_is_mobile()){
    wp_dequeue_script( 'cufon_handle' );
}