Hook only specific post type

You need to set the number of arguments your filter accepts:

add_filter( 'the_title', 'alternatives_title', 10 /* Priority */, 2 /* Arguments */ );

And you only need to use the_title (there is no get_the_title filter).