After reading through your support forum I found how to add some PHP to show the Site Title on the sticky menu next to the logo, I would also like to add the sub title of the site and write some CSS to change the font size, weight and colour of the site title and sub title.
Ok so i assume you have also filtered in the sticky-navigation-title. If so then we just need to nest the div.sticky-subtitle inside the div.sticky-navigation-title like so:
add_filter( 'generate_sticky_navigation_logo_output', function( $output ) {
$title = '<div class="sticky-navigation-title">
Your Title Text
<div class="sticky-subtitle">Your Subtitle text</div>
</div>';
return $output . $title;
} );