By default, if you activate the Site Title feature of the Header Logo element, the site title HTML tag is a <span>. Using this little PHP snippet, you can change the HTML tag of the Site Title feature.
add_filter('blocksy:header:logo:tag', function ($current_tag) {
return 'span';
});